添加xamarinFormApp例子,安卓,iOS,WPF

This commit is contained in:
alex chow
2020-11-27 01:33:20 +01:00
parent d95524f4fe
commit cf555ae5e7
99 changed files with 16255 additions and 0 deletions

View 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; }
}
}