This commit is contained in:
pavelbannov 2019-07-02 12:06:29 +03:00
parent 54317d1af8
commit fb765d4323

View File

@ -115,6 +115,42 @@ namespace ASC.Web.Studio
}
}
public PeopleData People
{
get
{
return new PeopleData();
}
}
public class PeopleData
{
public string Title
{
get
{
return JsonResourceManager.GetString("module.People.title");
}
}
}
public CommunityData Community
{
get
{
return new CommunityData();
}
}
public class CommunityData
{
public string Title
{
get
{
return JsonResourceManager.GetString("module.community.title");
}
}
}
}
@ -122,5 +158,3 @@ namespace ASC.Web.Studio
}
}