Skip to content
This repository has been archived by the owner on Nov 6, 2022. It is now read-only.

Commit

Permalink
Added new files
Browse files Browse the repository at this point in the history
  • Loading branch information
trueromanus committed Mar 16, 2019
1 parent 84a8ceb commit 6269e09
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
28 changes: 28 additions & 0 deletions src/Anilibria/Pages/Releases/PresentationClasses/SectionModel.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
namespace Anilibria.Pages.Releases.PresentationClasses {

/// <summary>
/// Section model.
/// </summary>
public class SectionModel {

/// <summary>
/// Title.
/// </summary>
public string Title
{
get;
set;
}

/// <summary>
/// Type.
/// </summary>
public SectionType Type
{
get;
set;
}

}

}
24 changes: 24 additions & 0 deletions src/Anilibria/Pages/Releases/PresentationClasses/SectionType.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
namespace Anilibria.Pages.Releases.PresentationClasses {

/// <summary>
/// Section type.
/// </summary>
public enum SectionType {

All,

Favorite,

NewReleases,

NewOnlineSeries,

NewTorrentSeries,

//Schedule,

//Seens,

};

}

0 comments on commit 6269e09

Please sign in to comment.