Files
Backend-Api/AccountManagement.Application.Contracts/CameraAccount/CreateCameraAccount.cs
2024-07-05 21:36:15 +03:30

18 lines
516 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AccountManagement.Application.Contracts.CameraAccount;
public class CreateCameraAccount
{
public string Username { get; set; }
public string Password { get; set; }
public string Mobile { get; set; }
public long WorkshopId { get; set; }
public string WorkshopName { get; set; }
public long AccountId { get; set; }
public string IsActiveString { get; set; }
}