[CHANGE] Updated string maxsize on entities. Setup lib dbcontext
This commit is contained in:
@@ -1,8 +1,11 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace Manager.Data.Models.LibraryContext;
|
||||
|
||||
public class ClientAccountEntity : DateTimeBase
|
||||
{
|
||||
public Guid Id { get; set; }
|
||||
[MaxLength(DataConstants.DbContext.DefaultDbStringSize)]
|
||||
public string Name { get; set; } = "";
|
||||
public List<PlaylistEntity> Playlists { get; set; } = [];
|
||||
public List<HttpCookieEntity> HttpCookies { get; set; } = [];
|
||||
|
Reference in New Issue
Block a user