mirror of
https://github.com/proxysu/ProxySU.git
synced 2024-11-26 23:26:08 +03:00
16 lines
299 B
C#
16 lines
299 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace ProxySU_Core.ViewModels.Developers
|
|||
|
{
|
|||
|
public class Developer
|
|||
|
{
|
|||
|
public string Name { get; set; }
|
|||
|
|
|||
|
public string TemplateName { get; set; }
|
|||
|
|
|||
|
public string Description { get; set; }
|
|||
|
}
|
|||
|
}
|