18 lines
444 B
C#
18 lines
444 B
C#
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<BasicFeatureVM>? Features { get; set; }
|
|
public bool Enabled { get; set; }
|
|
}
|
|
}
|