16 lines
559 B
C#
16 lines
559 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using AccountManagement.Application.Contracts.CameraAccount;
|
|
using CompanyManagment.App.Contracts.CustomizeWorkshopSettings;
|
|
|
|
namespace CompanyManagment.App.Contracts.RollCall;
|
|
public class AccountAndSettingViewModel
|
|
{
|
|
public CreateCameraAccount CreateCameraAccount { get; set; }
|
|
public CreateCustomizeWorkshopSettings CreateWorkshopSettings { get; set; }
|
|
public bool HasCamera { get; set; }
|
|
public bool HasGroupWorkshop { get; set; }
|
|
} |