using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using PutincevLibrary.Attributes; namespace WinForms.TestClasses { public class User { [AlwaysCreate] public string FIO { get; set; } public string AccessLevel { get; set; } public string Country { get; set; } public User(string fio, string acc, string cou) { FIO = fio; AccessLevel = acc; Country = cou; } public User() { } } }