using Marco.Pms.Model.ViewModels.Master; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Marco.Pms.Model.ViewModels.Tenant { public class InventoryModuleDetailsVM { public Guid Id { get; set; } public string? Name { get; set; } public List? Features { get; set; } public bool Enabled { get; set; } } }