SUBD_SportCompetitions/SportCompetitionsDataModels/Models/ICompetitionModel.cs

18 lines
345 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 ICompetitionModel : IId
{
string CompetitionName { get; set; }
DateTime CompetitionDateHolding { get; set; }
string CompetitionCity { get; set; }
}
}