mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-08-04 04:47:58 +08:00
添加xamarinFormApp例子,安卓,iOS,WPF
This commit is contained in:
15
Examples/xamarinFormApp/xamarinFormApp/Models/Item.cs
Normal file
15
Examples/xamarinFormApp/xamarinFormApp/Models/Item.cs
Normal file
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using FreeSql.DataAnnotations;
|
||||
|
||||
namespace xamarinFormApp.Models
|
||||
{
|
||||
public class Item
|
||||
{
|
||||
[Column(IsPrimary = false)]
|
||||
public string fId { get; set; }
|
||||
|
||||
public string Id { get; set; }
|
||||
public string Text { get; set; }
|
||||
public string Description { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user