Files
Backend-Api/0_Framework/Application/CameraAuthViewModel.cs
2024-07-05 21:36:15 +03:30

29 lines
825 B
C#

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()
{
}
}