using System;
using System.ComponentModel.DataAnnotations;
using Model.Base;
namespace Dto.Client
{
///
/// 静态资源
///
public class ApiGroupListDto
{
///
/// 类型(0-app,1-后台)
///
public int groupKind { get; set; }
///
/// 项目ID
///
public int projectId { get; set; }
///
/// 口令
///
public string? key { get; set; }
}
}