19 lines
559 B
C#
19 lines
559 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 RePassword { 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; }
|
|
} |