Libation/WinFormsDesigner/GridEntry.cs
Michael Bucari-Tovo 560523b99d Revert "Removed WinFormsDesigner project."
This reverts commit d5e9e4951704b876a9d8f9fef9cae7de684dc7bb.
2021-08-10 18:26:10 -06:00

32 lines
868 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
namespace WinFormsDesigner
{
internal class GridEntry
{
[Browsable(false)]
public string Tags { get; set; }
[Browsable(false)]
public IEnumerable<string> TagsEnumerated { get; set; }
[Browsable(false)]
public string Download_Status { get; set; }
public Image Cover { get; set; }
public string Title { get; set; }
public string Authors { get; set; }
public string Narrators { get; set; }
public int Length { get; set; }
public string Series { get; set; }
public string Description { get; set; }
public string Category { get; set; }
public string Product_Rating { get; set; }
public DateTime? Purchase_Date { get; set; }
public string My_Rating { get; set; }
public string Misc { get; set; }
}
}