5b40cf6fb0
* Added language support api * Added canRead canWrite to functions Access api
15 lines
258 B
C#
15 lines
258 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Step.Model.DTOModels
|
|
{
|
|
public class DTOLanguageModel
|
|
{
|
|
public string Name;
|
|
public string IsoId;
|
|
}
|
|
}
|