Skip to content

Commit 9834a06

Browse files
committed
DDCORE-14695 Прокинул комментарий организации в публичное АПИ
1 parent 8ea22cb commit 9834a06

2 files changed

Lines changed: 8 additions & 0 deletions

File tree

proto/Organization.proto

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ message Organization {
4242
optional bool IsOwner = 28 [default = false];
4343
optional ForeignInformation ForeignInformation = 29;
4444
required ReadyForEpdStatus ReadyForEpdStatus = 30;
45+
required string Comment = 31;
4546
}
4647

4748
message Department {

src/Proto/Organization.proto.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -313,6 +313,13 @@ public Diadoc.Api.Proto.ReadyForEpdStatus ReadyForEpdStatus
313313
get { return _ReadyForEpdStatus; }
314314
set { _ReadyForEpdStatus = value; }
315315
}
316+
private string _Comment;
317+
[global::ProtoBuf.ProtoMember(31, IsRequired = true, Name=@"Comment", DataFormat = global::ProtoBuf.DataFormat.Default)]
318+
public string Comment
319+
{
320+
get { return _Comment; }
321+
set { _Comment = value; }
322+
}
316323
private global::ProtoBuf.IExtension extensionObject;
317324
global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
318325
{ return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }

0 commit comments

Comments
 (0)