-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathModels.cs
More file actions
35 lines (34 loc) · 1.1 KB
/
Models.cs
File metadata and controls
35 lines (34 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// auto-generated by sqlc - do not edit
namespace SqliteLegacyExampleGen
{
using NodaTime;
using NodaTime.Extensions;
using NodaTime.Text;
using System.Linq;
public class Author
{
public int Id { get; set; }
public string Name { get; set; }
public string Bio { get; set; }
};
public class Book
{
public int Id { get; set; }
public string Name { get; set; }
public int AuthorId { get; set; }
public string Description { get; set; }
};
public class TypesSqlite
{
public int? CInteger { get; set; }
public decimal? CReal { get; set; }
public string CText { get; set; }
public byte[] CBlob { get; set; }
public string CTextDatetimeOverride { get; set; }
public int? CIntegerDatetimeOverride { get; set; }
public string CTextNodaInstantOverride { get; set; }
public int? CIntegerNodaInstantOverride { get; set; }
public string CTextBoolOverride { get; set; }
public int? CIntegerBoolOverride { get; set; }
};
}