mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-04-27 05:02:50 +08:00
15 lines
323 B
C#
15 lines
323 B
C#
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; }
|
|
}
|
|
} |