DocSpace-client/web/ASC.Web.Api/Models/Module.cs

17 lines
390 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 ImageUrl { get; set; }
public string Description { get; set; }
public bool IsPrimary { get; set; }
}
}