16 lines
278 B
C#
Raw Normal View History

2024-04-23 15:46:00 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SportCompetitionsDataModels.Models
{
public interface ITeamModel : IId
{
2024-04-23 22:25:40 +04:00
string TeamName { get; set; }
2024-04-23 15:46:00 +04:00
2024-04-23 22:25:40 +04:00
string TeamCountry { get; set; }
2024-04-23 15:46:00 +04:00
}
}