We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3e26535 + 69ce983 commit 0394c22Copy full SHA for 0394c22
NFe.Classes/Informacoes/Identificacao/ide.cs
@@ -120,6 +120,22 @@ public string ProxydhSaiEnt
120
set { dhSaiEnt = DateTimeOffset.Parse(value); }
121
}
122
123
+ /// <summary>
124
+ /// B10a - Data da previsão de entrega ou disponibilização do bem
125
+ /// </summary>
126
+ [XmlIgnore]
127
+ public DateTime dPrevEntrega { get; set; }
128
+
129
130
+ /// Proxy para dPrevEntrega no formato AAAA-MM-DD
131
132
+ [XmlElement(ElementName = "dPrevEntrega")]
133
+ public string ProxydPrevEntrega
134
+ {
135
+ get { return dPrevEntrega.ParaDataString(); }
136
+ set { dPrevEntrega = DateTime.Parse(value); }
137
+ }
138
139
/// <summary>
140
/// B11 - Tipo do Documento Fiscal
141
/// </summary>
0 commit comments