using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace presence.Data.LocalData.Entity { public class UserLocalEntity { public required string UserFIO { get; set; } public int UserId { get; set; } public required int GroupID { get; set; } } }