64 lines
2.8 KiB
C#
64 lines
2.8 KiB
C#
//------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// This code was generated by a tool.
|
|
//
|
|
// Changes to this file may cause incorrect behavior and will be lost if
|
|
// the code is regenerated.
|
|
// </auto-generated>
|
|
//------------------------------------------------------------------------------
|
|
|
|
using System;
|
|
|
|
|
|
namespace BlendFile.DNA {
|
|
using BlendFile;
|
|
|
|
[DNAClassAttribute(1006, "bUserExtensionRepo", 2192)]
|
|
public class bUserExtensionRepo {
|
|
[DNAFieldAttribute(8, "bUserExtensionRepo", 0, "*next", "bUserExtensionRepo", true, 0)]
|
|
public bUserExtensionRepo next;
|
|
[DNAFieldAttribute(8, "bUserExtensionRepo", 1, "*prev", "bUserExtensionRepo", true, 8)]
|
|
public bUserExtensionRepo prev;
|
|
[DNAArrayAttribute(64, "char", 2, "name[64]", "System.Char[]", 64, false, 16)]
|
|
public char[] name = new System.Char[64];
|
|
[DNAArrayAttribute(48, "char", 3, "module[48]", "System.Char[]", 48, false, 80)]
|
|
public char[] module = new System.Char[48];
|
|
[DNAFieldAttribute(8, "char", 4, "*access_token", "char", true, 128)]
|
|
public char access_token;
|
|
[DNAArrayAttribute(1024, "char", 5, "custom_dirpath[1024]", "System.Char[]", 1024, false, 136)]
|
|
public char[] custom_dirpath = new System.Char[1024];
|
|
[DNAArrayAttribute(1024, "char", 6, "remote_url[1024]", "System.Char[]", 1024, false, 1160)]
|
|
public char[] remote_url = new System.Char[1024];
|
|
[DNAFieldAttribute(1, "uchar", 7, "flag", "uchar", false, 2184)]
|
|
public byte flag;
|
|
[DNAFieldAttribute(1, "uchar", 8, "source", "uchar", false, 2185)]
|
|
public byte source;
|
|
[DNAArrayAttribute(6, "char", 9, "_pad0[6]", "System.Char[]", 6, false, 2186)]
|
|
public char[] _pad0 = new System.Char[6];
|
|
public bUserExtensionRepo() {
|
|
this.next = default;
|
|
this.prev = default;
|
|
this.name = default;
|
|
this.module = default;
|
|
this.access_token = default;
|
|
this.custom_dirpath = default;
|
|
this.remote_url = default;
|
|
this.flag = default;
|
|
this.source = default;
|
|
this._pad0 = default;
|
|
}
|
|
public bUserExtensionRepo(bUserExtensionRepo next, bUserExtensionRepo prev, char[] name, char[] module, char access_token, char[] custom_dirpath, char[] remote_url, byte flag, byte source, char[] _pad0) {
|
|
this.next = next;
|
|
this.prev = prev;
|
|
this.name = name;
|
|
this.module = module;
|
|
this.access_token = access_token;
|
|
this.custom_dirpath = custom_dirpath;
|
|
this.remote_url = remote_url;
|
|
this.flag = flag;
|
|
this.source = source;
|
|
this._pad0 = _pad0;
|
|
}
|
|
}
|
|
}
|