SUBD_SportCompetitions/SportCompetitionsDataModels/Models/ITeamModel.cs

16 lines
268 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SportCompetitionsDataModels.Models
{
public interface ITeamModel : IId
{
string TeamName { get; }
string TeamCountry { get; }
}
}