You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Dotnet-WebAPI/AppContext/Entities/TacticEntity.cs

15 lines
341 B

using Model;
namespace AppContext.Entities;
public class TacticEntity
{
public int Id { get; init; }
public required string Name { get; set; }
public required DateTime CreationDate { get; set; }
public required int OwnerId { get; set; }
public UserEntity? Owner { get; set; }
public CourtType Type { get; set; }
}