17 lines
368 B
C#
17 lines
368 B
C#
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; }
|
|
}
|
|
}
|