Initial check-in
This commit is contained in:
parent
c080c9e51d
commit
2cc93078d2
282 changed files with 24387 additions and 0 deletions
29
WinFormsDesigner/GridEntry.cs
Normal file
29
WinFormsDesigner/GridEntry.cs
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
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; }
|
||||
|
||||
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; }
|
||||
public string Download_Status { get; set; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue