SUBD_SportCompetitions/SportCompetitionsDataModels/Models/IResultModel.cs

16 lines
308 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
{
int CompetitionId { get; set; }
int TeamId { get; set; }
int ResultPosition { get; set; }
}
}