using System; namespace GCAS.Model { public class ActionsModel { public int Id { get; set; } public DateTime Time { get; set; } public string Operator { get; set; } public string Info { get; set; } public string RoleName { get; set; } } }