12 lines
218 B
C#
12 lines
218 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using PropertyChanged;
|
|
|
|
namespace bdAsegasa.db;
|
|
|
|
[AddINotifyPropertyChangedInterface]
|
|
public partial class v_registrostablas
|
|
{
|
|
public string? Expr { get; set; }
|
|
}
|