[CHANGE] Preparing client init

This commit is contained in:
max
2025-09-02 15:17:14 +02:00
parent 0ab0a029c4
commit dbf6938a7e
2 changed files with 35 additions and 4 deletions

View File

@@ -10,4 +10,6 @@ public class ClientAccountEntity : DateTimeBase
public string Name { get; set; } = "";
public List<PlaylistEntity> Playlists { get; set; } = [];
public List<HttpCookieEntity> HttpCookies { get; set; } = [];
[MaxLength(DataConstants.DbContext.DefaultDbStringSize)]
public string? UserAgent { get; set; }
}