平安校园
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CameraGroupAddInput.cs 300 B

2 months ago
2 months ago
12345678910111213
  1. namespace SafeCampus.Application.Services.Business.CameraGroupService;
  2. public class CameraGroupAddInput
  3. {
  4. /// <summary>
  5. /// 父级id
  6. /// </summary>
  7. public long? ParentId { get; set; }
  8. /// <summary>
  9. /// 分组名称
  10. /// </summary>
  11. public string Name { get; set; }
  12. }