mirror of
https://github.com/Tribufu/ServerManagers
synced 2026-08-10 13:11:06 +00:00
source code checkin
This commit is contained in:
parent
5f8fb2c825
commit
7e57b72e35
675 changed files with 168433 additions and 0 deletions
97
src/ServerManager.Common/Model/WorkshopFileDetail.cs
Normal file
97
src/ServerManager.Common/Model/WorkshopFileDetail.cs
Normal file
|
|
@ -0,0 +1,97 @@
|
|||
using System;
|
||||
|
||||
namespace ServerManagerTool.Common.Model
|
||||
{
|
||||
public class WorkshopFileDetail
|
||||
{
|
||||
public int result { get; set; }
|
||||
|
||||
public string publishedfileid { get; set; }
|
||||
|
||||
public string creator { get; set; }
|
||||
|
||||
public string creator_appid { get; set; }
|
||||
|
||||
public string consumer_appid { get; set; }
|
||||
|
||||
public int consumer_shortcutid { get; set; }
|
||||
|
||||
public string filename { get; set; }
|
||||
|
||||
public string file_size { get; set; }
|
||||
|
||||
public string preview_file_size { get; set; }
|
||||
|
||||
public string file_url { get; set; }
|
||||
|
||||
public string preview_url { get; set; }
|
||||
|
||||
public string url { get; set; }
|
||||
|
||||
public string hcontent_file { get; set; }
|
||||
|
||||
public string hcontent_preview { get; set; }
|
||||
|
||||
public string title { get; set; }
|
||||
|
||||
public string file_description { get; set; }
|
||||
|
||||
public int time_created { get; set; }
|
||||
|
||||
public int time_updated { get; set; }
|
||||
|
||||
public int visibility { get; set; }
|
||||
|
||||
public int flags { get; set; }
|
||||
|
||||
public bool workshop_file { get; set; }
|
||||
|
||||
public bool workshop_accepted { get; set; }
|
||||
|
||||
public bool show_subscribe_all { get; set; }
|
||||
|
||||
public int num_comments_developer { get; set; }
|
||||
|
||||
public int num_comments_public { get; set; }
|
||||
|
||||
public bool banned { get; set; }
|
||||
|
||||
public string ban_reason { get; set; }
|
||||
|
||||
public string banner { get; set; }
|
||||
|
||||
public bool can_be_deleted { get; set; }
|
||||
|
||||
public bool incompatible { get; set; }
|
||||
|
||||
public string app_name { get; set; }
|
||||
|
||||
public int file_type { get; set; }
|
||||
|
||||
public bool can_subscribe { get; set; }
|
||||
|
||||
public int subscriptions { get; set; }
|
||||
|
||||
public int favorited { get; set; }
|
||||
|
||||
public int followers { get; set; }
|
||||
|
||||
public int lifetime_subscriptions { get; set; }
|
||||
|
||||
public int lifetime_favorited { get; set; }
|
||||
|
||||
public int lifetime_followers { get; set; }
|
||||
|
||||
public int views { get; set; }
|
||||
|
||||
public bool spoiler_tag { get; set; }
|
||||
|
||||
public int num_children { get; set; }
|
||||
|
||||
public int num_reports { get; set; }
|
||||
|
||||
public int language { get; set; }
|
||||
|
||||
public bool IsAdded { get; set; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue