DocSpace-client/web/ASC.Web.Api/Models/Module.cs
2019-05-15 17:56:09 +03:00

17 lines
387 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace ASC.Web.Api.Models
{
public class Module
{
public string Title { get; set; }
public string Link { get; set; }
public string Image { get; set; }
public string Description { get; set; }
public bool IsPrimary { get; set; }
}
}