Files
Yi.Admin/Yi.Framework.Net6/Yi.Framework.Common/Models/AxiosUrlsModel.cs

17 lines
368 B
C#
Raw Normal View History

2021-10-23 13:41:58 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Yi.Framework.Common.Models
{
public class AxiosUrlsModel
{
public string get { get; set; }
public string update { get; set; }
public string del { get; set; }
public string add { get; set; }
}
}