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/TeamEntity.cs

12 lines
378 B

namespace AppContext.Entities;
public class TeamEntity
{
public int Id { get; set; }
public required string Name { get; set; }
public required string Picture { get; set; }
public required string MainColor { get; set; }
public required string SecondColor { get; set; }
public ICollection<MemberEntity> Members { get; set; } = new List<MemberEntity>();
}