using System.Collections.Generic; namespace _0_Framework.Application; public class CameraAuthViewModel { public CameraAuthViewModel(long id, long workshopId, string username, string mobile, string workshopName, long accountId, string isActiveString) { Id = id; WorkshopId = workshopId; Username = username; Mobile = mobile; WorkshopName = workshopName; AccountId = accountId; IsActiveString = isActiveString; } public long Id { get; set; } public long WorkshopId { get; set; } public string Username { get; set; } public string Mobile { get; set; } public string WorkshopName { get; set; } public long AccountId { get; set; } public string IsActiveString { get; set; } public CameraAuthViewModel() { } }