SUBD_SportCompetitions/SportCompetitionsDataModels/Models/IRecordModel.cs

20 lines
388 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 IRecordModel : IId
{
string RecordName { get; set; }
string RecordDecriptiption { get; set; }
int MemberId { get; set; }
DateTime RecordDate { get; set; }
int RecordValue { get; set; }
}
}