SUBD_SportCompetitions/SportCompetitionsDataModels/Models/IResultModel.cs

17 lines
342 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 IResultModel : IId
{
2024-04-23 21:48:49 +04:00
string ResultName { get; set; }
2024-04-23 15:46:00 +04:00
int CompetitionId { get; set; }
int TeamId { get; set; }
int ResultPosition { get; set; }
}
}